349cd7e569b8e4564f0d8bd787503eb1f93dc631,src/main/java/org/takes/rs/RsPrettyJSON.java,RsPrettyJSON,make,#,94
Before Change
* @throws IOException If fails
*/
private Response make() throws IOException {
if (this.transformed.get() == null) {
synchronized (this.mutex) {
if (this.transformed.get() == null) {
this.transformed.set(
new RsWithBody(
this.origin,
RsPrettyJSON.transform(this.origin.body())
After Change
*/
@SuppressFBWarnings("JLM_JSR166_UTILCONCURRENT_MONITORENTER")
private Response make() throws IOException {
synchronized (this.transformed) {
if (this.transformed.isEmpty()) {
this.transformed.add(
new RsWithBody(
this.origin,
RsPrettyJSON.transform(this.origin.body())